Skip to main content
Version: v2.10.0

Schema Explorer

Yeedu notebooks include an integrated Catalog Explorer for browsing metadata in the metastore attached to the notebook's cluster, without leaving the editor. We built it because the alternative is genuinely disruptive: writing a query against an unfamiliar table otherwise means abandoning the notebook, finding a catalogue browser elsewhere, establishing the schema and the column types, and returning to reconstruct whatever train of thought the detour interrupted. Everything the panel displays comes from the metastore the notebook's own cluster is attached to, so the structures listed are exactly the structures your cells can reference, and a table missing from the tree is a table your query won't resolve either.

Open it from the Catalog Explorer icon on the left rail of the notebook editor.

The tree is read-only. It describes the catalogue rather than modifying it.

Catalog Explorer tree

ElementDetail
Catalog nameThe name of the catalog, for example hive.
Type badgeThe metastore type, for example HIVE.
Refresh iconReloads the tree from the metastore.
Close iconCloses the panel.
Search boxPlaceholder schema/schema.table.

Tree

The body is a three-level tree:

schema
└── table
└── column

Column entries carry a # type marker.

Node Hover Card

Every node has a kebab that opens a hover card:

Card elementDetail
TitleThe object name, for example call_center.
SubtitleThe fully-qualified name, for example bronze_retail.call_center.
Copy iconCopies the fully-qualified name to the clipboard.
» iconInserts the fully-qualified name into the active cell, at the cursor.
BodyOwner:, Created At:, and Updated At:.
tip

Use the » icon rather than copy-and-paste. It drops the fully-qualified name straight into the cell you're editing.

See Also